.stats-section {
    padding: 70px 0;
    text-align: center;
    background: #fff;
}

.stats-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* BOX DESIGN */
.stat-box {
    padding: 35px 20px;
    background: #ffffff;
    border: 2px solid rgba(255, 237, 1, 0.35);
    border-radius: 14px;
    transition: 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.stat-box:hover {
    transform: translateY(-6px);
    border-color: #ffed01;
}

/* TEXTS */
.stat-box h3 {
    color: #ffed01;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-box p {
    color: #555;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
